/* Copyright (c) 2003 The Nutch Organization. All rights reserved. */ /* Use subject to the conditions in http://www.nutch.org/LICENSE.txt. */ package net.nutch.io; /** An interface which extends both {@link Writable} and {@link Comparable}. * * @author Doug Cutting */ public interface WritableComparable extends Writable, Comparable { }